Vol10: Output Devices

Moving some motors, reading books on E-paper lcds


This week we're learning about Output Devices, measuring power consumption using a power supply, making stuff move, write using our own microcontroller pcb while hustling to celeberate Eid.

Requirements

    Group Assignment
  1. Measure the power consumption of an output device.
  2. Document your work to the group work page and reflect on your individual page what you learned

Individual Assignment
  1. Add an output device to a microcontroller board you've designed and program it to do something.


Softwares 💻

  1. KiCAD
  2. MODS
  3. GIMP
  4. Arduino IDE


Group Assignment

What kills you the Volt or the ampere? the current or the voltags? I never wanted to find out to be honest so I dodged the power supply like it was the plague. But time has come to face the tool I feared and really understand why the servos need external power source and see the ohm's law in motion.

In the group assignment our instructors Amany and Saeed told us how to use the power supply to supply a lamp a certain voltage and see the corresponding current on the power supply's screen. We then deduced the power using ohm's law "p=IV" . We amplified the voltage and saw the light begin to become brighter. After that we wanted to measure the real voltage and current running through the lamp.To measure the current, we connected the multimeter in series finally I get the right name for the right connection always mix those up in English but not in Arabic! with the lamp and changed the probe to the current side and measured again.

Measuring current

We notices the current reading was 0.02 higher than was put on the screen so the crocodiles have resistance we didn't account for.




Moving Motors

My final project is all about movement and from the deepest bottom of my heart I like seeing things move. Also, Saeed introduced us a new component that can be handy in our toolkit: The mosfet. Here's a very thorough video by The Engineering Mindset youtube channel. The mosfets are spmething like a switch think the relay but without the mechanical aspect. It instead voltage-controlled, meaning by applying a certain voltage to the pin called gate, it will allow the current to flow.

The MOSFET is Classified into two types based on the type of operations, namely Enhancement mode MOSFET and Depletion mode MOSFET, it's further classified based on the material used for construction as n-channel and p-channel. The difference between n-channel and p-channel is that in an N-channel, switch will remain open until a gate voltage is provided. When the gate pin receives the voltage, the switch (between Drain and Source) will get closed.



PCB Design

I'll create another board with the mosfet on it and connect it with the microcontroller board I made in Week6 here and to control a dc motor and I'll be using an n-channel mosfet since I want my motor to not work until a signal/voltage is provided.

My Components

Component Quantity Function
DC jack 1 power jack for the adaptor
Resistor 1 10k pull-down resistor
Diode 1 Flyback Diode to not damage the circuit because of the Motor's large inductance.
PinHeaders 2 Signal, vin, and GND for main board + Motor pins

before I ran to make the board in kicad, Saeed made us do the circuit on a breadboard.

The Code


         int motor = 33; 
  
       void setup() {
      pinMode(motor, OUTPUT);
        }

     void loop() {
       digitalWrite(motor, HIGH);  
       delay(1000);                    
      digitalWrite(motor, LOW);   
       delay(1000);                     
        }

                



Schematic & Layout

After that I jumped to Kicad and tried to replicate as always trying my best to make it neat and added a outline that looks like a motor to avoid the mundane rectangle .



Fabrication & Testing

I used the same workflow introduced in week 6 as well began fabricating my board.

After Soldering

I supplied the motor with 5v Adaptor and made sure I disconnected the FTDI because I didn't want to lose my laptop hehe..

Then I used the same code mentioned above put changed the pin number to my PWM pinheader IO17 and Voila!

Challenges

First working while fasting in Ramadan is exhausting but I managed. Second, I had a lot of challenges with drawing the schematic of the motor pcb and I ended up making a mistake. I put a pull up resistor instead of a pull-down.. I made sure in the code to make the motor low before disconnecting the power.



Moving Servo

I also wanted to move the servo motor becuase I used it in Embedded programming week and I want to use it in future weeks and recreate the movement I wanted to make towards a planet via NASA API. I'll be controlling it with my board I made in Input Devices week since I added power pins to it. I'll run a sweep code and see how it goes!

The Code

#include ESP32Servo.h>
 Servo myservo; 
int pos = 0;   
int servoPin = 27;
 void setup() {
    ESP32PWM::allocateTimer(0);
   ESP32PWM::allocateTimer(1);
   ESP32PWM::allocateTimer(2);
   ESP32PWM::allocateTimer(3);
  myservo.setPeriodHertz(50);    // standard 50 hz servo
   myservo.attach(servoPin, 1000, 2000); 
  }
            
 void loop() {
           
  for (pos = 0; pos <= 180; pos += 1) { // goes from 0 degrees to 180 degrees in 1 deg steps
  myservo.write(pos);    // goes to position stored in pos variable
   delay(15);             // waits 15ms to reach position
    }
  for (pos = 180; pos >= 0; pos -= 1) { 
   myservo.write(pos);    // goes to position stored in pos variable
    delay(15);            
  }
   }

Output

Voila!



Making Kindles

The first thing i gifted my self in 2023 after offered a full-time job as a fabrication Specialist was a kindle. I loved it so much and I carry it with me wherever I go. It was a great joy to to test an E-paper lcd for this week.

Currently reading "Slow Productivity" on my kindle.

Well I found an overly simple documentation for the WeAct Studion E-paper 2.13' module I have here. But it's hardly a documentaion and only has one example for each board with no wiring diagram. It's based though on this library by an E-paper guru called ZinggGM.

Challenges

The first struggle: To I2C or not to I2C

Short answer is to not to I2C but to SPI because some lunatic decided that people would understand that the SCL and SDA written on the E-paper's pins is ACTUALLY MISO AND CLK. I don't know who you're but I'll look out for you, I'll find you and hunt in your dreams.



The second struggle: boi oh boi what is that documentation.

The example provided in the WEAct Studio on Github is an example taken from a very-well-documented-extremely-overwhelming-library. It assumebly suppots most of E-paper LCDs except the one I got.

after laughing for half an hour on my mistake on the SPI connection and correcting the wiring the lcd didn't even say hello. So I ran through the issues on Github.

My issue was that I didn't want to use the preconfigured pins from the example but choose my own so I found this method I tried this method but it still didn't work. I'll try it again.

This didn't discourage me on the contrary I'm actually grateful I found out-and applied to participate in- a project called The Open Book . It' an open hardware e-book reader designed around the ESP32-S3. The Open Book stakes out an alternate vision for developing personal computing devices, using the humble e-book reader as its ideological canvas.




Making Kindles ver.2!

Files

  • Motor board KiCad Files + Gerber +PNGs
  • Sweep Code
  • Motor test code